home *** CD-ROM | disk | FTP | other *** search
- OPEN "AddressFile" FOR INPUT AS 1
-
- ReadData:
- INPUT#1,Nam$
- INPUT#1,Address$
- INPUT#1,City$
- INPUT#1,Phone$
- PRINT
- PRINT "Name: ";Nam$
- PRINT "Address: ";Address$
- PRINT "City: ";City$
- PRINT "Phone: ";Phone$
-
- IF EOF(1)=0 THEN ReadData
- CLOSE 1
-
-